DataGridGetRowData

 

The 'DataGridGetRowData' function gets the data which was entered at specified Column and Row at DataGrid object.

 

string @DataGridGetRowData(string class_name, string column_name, int row_pos);

 

Parameters

string class_name : Class name of DataGrid object.

string column_name : Column name.

int row_pos : Row number.

 

Return Value

It returns the data which corresponds to specified Column and Row.

 

Example

data = @DataGridGetRowData("DataGrid1", "NAME", 0);

Description : It stores the first row data of 'NAME' Column at DataGrid object 'DataGrid1', at variable 'data'.

 

Version Information

Supported Version : 10.2.4 or higher